home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / misc / o-z / x-windows / mesa-amiwin / src-aux / makefile < prev    next >
Encoding:
Makefile  |  1995-09-19  |  2.1 KB  |  95 lines

  1. # Makefile for aux toolkit
  2.  
  3. # Mesa 3-D graphics library
  4. # Version:  1.2.3
  5. # Copyright (C) 1995  Brian Paul  (brianp@ssec.wisc.edu)
  6. #
  7. # This library is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU Library General Public
  9. # License as published by the Free Software Foundation; either
  10. # version 2 of the License, or (at your option) any later version.
  11. #
  12. # This library is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. # Library General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Library General Public
  18. # License along with this library; if not, write to the Free
  19. # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.  
  22. # $Id: Makefile,v 1.10 1995/09/19 14:16:28 brianp Exp $
  23.  
  24. # $Log: Makefile,v $
  25. # Revision 1.10  1995/09/19  14:16:28  brianp
  26. # bumped version to 1.2.3
  27. #
  28. # Revision 1.9  1995/08/01  20:52:34  brianp
  29. # modified to use $(MAKELIB)
  30. #
  31. # Revision 1.8  1995/06/21  15:58:16  brianp
  32. # renamed aux.o as glaux.o for MS-DOS
  33. # added IRIX 5 DSO and Linux ELF shared library targets
  34. # Release 1.2.1
  35. #
  36. # Revision 1.7  1995/05/22  17:01:24  brianp
  37. # Release 1.2
  38. #
  39. # Revision 1.6  1995/05/15  16:15:46  brianp
  40. # clean up and reorganize
  41. #
  42. # Revision 1.5  1995/03/30  22:29:49  brianp
  43. # removed TK objects from AUX archive
  44. #
  45. # Revision 1.4  1995/03/04  19:37:49  brianp
  46. # changed for Make-config
  47. #
  48. # Revision 1.3  1995/03/01  21:07:51  brianp
  49. # replaced 'make' with $(MAKE)
  50. #
  51. # Revision 1.2  1995/02/24  16:15:08  brianp
  52. # added netbsd target
  53. #
  54. # Revision 1.1  1995/02/24  16:14:02  brianp
  55. # Initial revision
  56. #
  57.  
  58.  
  59. ##### MACROS #####
  60.  
  61. VPATH = RCS
  62.  
  63. INCDIR = ../include
  64. LIBDIR = ../lib
  65.  
  66. OBJECTS = glaux.o font.o image.o shapes.o teapot.o vect3d.o xform.o
  67.  
  68.  
  69.  
  70. ##### RULES #####
  71.  
  72. .c.o:
  73.     $(CC) -c -I$(INCDIR) $(CFLAGS) $<
  74.  
  75.  
  76.  
  77. ##### TARGETS #####
  78.  
  79. default:
  80.     @echo "Specify a target configuration"
  81.  
  82. clean:
  83.     -rm *.o *~
  84.  
  85. targets: $(LIBDIR)/$(AUX_LIB)
  86.  
  87. # Make the library
  88. $(LIBDIR)/$(AUX_LIB): $(OBJECTS)
  89.     $(MAKELIB) $@ $(OBJECTS)
  90.     $(RANLIB) $@
  91.  
  92. include ../Make-config
  93.  
  94.  
  95.